home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PGetPageNumber.h ----------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Thu, Oct 12, 1995 @ 10:26 PM by Paul Ferguson.
- *
- * Description:
- *-------------------------------------------------------------------------
- */
- #ifndef __PGetPageNumber__
- #define __PGetPageNumber__
-
- #include "PHandleQuery.h"
-
- class PGetPageNumber : public PHandleQuery
- {
-
- public:
-
- PGetPageNumber();
-
- operator const char *() const { return sMasterName; } // convenient shortcuts
- operator const short() const { return nPageNumber; }
-
- short nPageNumber;
- const char * sMasterName;
- };
-
- #endif
-
- // end of PGetPageNumber.h
-